home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / nonlinear-programming-faq < prev    next >
Encoding:
Internet Message Format  |  1994-05-04  |  21.7 KB

  1. Subject: Nonlinear Programming FAQ
  2. Newsgroups: news.answers,sci.answers,sci.op-research
  3. From: jwg@cray.com (John Gregory)
  4. Date: 2 May 94 16:22:11 CDT
  5.  
  6. Posted-By: auto-faq 2.4
  7. Archive-name: nonlinear-programming-faq
  8. Last-modified: May 1, 1994
  9.  
  10.         Nonlinear Programming - Frequently Asked Questions List
  11.                       (nonlinear-programming-faq)
  12.            Posted monthly to Usenet newsgroup sci.op-research
  13.                  Most recent update: May 1, 1994
  14.  
  15. -----------------------------------------------------------------------
  16.  
  17. "Happiness is having a scratch for every itch."  -- Ogden Nash
  18.  
  19. Q0.  "What's in this FAQ?"
  20.  
  21. A:  Table of Contents
  22.    Q1.  "What is Nonlinear Programming?"
  23.    Q2.  "What software is there for nonlinear optimization?"
  24.    Q3.  "I wrote an optimization code.  Where are some test models?"
  25.    Q4.  "What references are there in this field?"
  26.    Q5.  "How do I access the Netlib server?
  27.    Q6.  "Who maintains this FAQ list?"
  28.  
  29. See also the related FAQ on Linear Programming (LP).
  30.  
  31. -----------------------------------------------------------------------
  32.  
  33. Q1.  "What is Nonlinear Programming?"
  34.  
  35. A:  A Nonlinear Program (NLP) is a problem that can be put into the
  36. form
  37.  
  38.     minimize   F(x)
  39.     subject to g (x)  = 0     for i=1,...,m1       where m1 >= 0
  40.                 i
  41.                h (x) >= 0    for j=m1+1,...,m      where m >= m1
  42.                 j
  43.  
  44. That is, there is one scalar-valued function F, of several variables (x
  45. here is a vector), that we seek to minimize subject (perhaps) to one or
  46. more other such functions that serve to limit or define the values of
  47. these variables.  F is called the "objective function", while the
  48. various other functions are called the "constraints".  (If maximization
  49. is sought, it is trivial to do so, by multiplying F by -1.)
  50.  
  51. Because NLP is a difficult field, researchers have identified special
  52. cases for study.  A particularly well studied case is the one where
  53. all the constraints g and h are linear.  The name for such a problem,
  54. unsurprisingly, is "linearly constrained optimization".  If, as well,
  55. the objective function is quadratic at most, this problem is called
  56. Quadratic Programming (QP).  A further special case of great importance
  57. is where the objective function is entirely linear; this is called
  58. Linear Programming and is discussed in a separate FAQ list.  Another
  59. important special case, called unconstrained optimization, is where
  60. there are no constraints at all.
  61.  
  62. One of the greatest challenges in NLP is that some problems exhibit
  63. "local optima"; that is, spurious solutions that merely satisfy the
  64. requirements on the derivatives of the functions.  Think of a near-
  65. sighted mountain climber in a terrain with multiple peaks, some peaks
  66. higher than others, and you'll see the difficulty posed for an
  67. algorithm that tries to move from point to point only by climbing
  68. uphill.  Algorithms that propose to overcome this difficulty are termed
  69. "Global Optimization".
  70.  
  71. The word "Programming" is used here in the sense of "planning"; the
  72. necessary relationship to computer programming was incidental to the
  73. choice of name.  Hence the phrase "NLP program" to refer to a piece of
  74. software is not a redundancy, although I tend to use the term "code"
  75. instead of "program" to avoid the possible ambiguity.
  76.  
  77. -----------------------------------------------------------------------
  78.  
  79. Q2.  "What software is there for nonlinear optimization?"
  80.  
  81. A: It's unrealistic to expect to find one general NLP code that's going
  82. to work for every kind of nonlinear model.  Instead, you should try to
  83. find a code that fits the problem you are solving.  If your problem
  84. doesn't fit in any category except "general", or if you insist on a
  85. globally optimal solution (except when there no chance of encountering
  86. multiple local optima), you should be prepared to have to use a method
  87. that boils down to exhaustive search, i.e., you have an intractable
  88. problem.
  89.  
  90. I would be extremely interested in hearing of people's experiences with
  91. the codes they learn about from reading this FAQ.  (Note, I'm looking
  92. for more-or-less independent confirmation or denial of the practicality
  93. of codes.)
  94.  
  95. Several of the commercial LP codes referenced in the LP FAQ have
  96. specialized routines, particularly QP.  The ones that I know of that
  97. have some form of QP are: LINDO, KORBX, LOQO, MPS-III, OSL, and
  98. PC-PROG.  Many general nonlinear problems can be solved (or at least
  99. confronted) by application of a sequence of LP or QP approximations.
  100.  
  101. There are ACM TOMS routines for QP, #559 and #587, available from the
  102. netlib server, in directory /netlib/toms.
  103.  
  104. There is a directory, /netlib/opt, on the netlib server containing a
  105. collection of optimization routines.  The last time I checked, I saw
  106. - "praxis" (unconstrained optimization, without requiring derivatives)
  107. - "tn" (Newton method for unconstrained or simple-bound optimization)
  108. - "ve08" (optimization of unconstrained separable function).
  109. - "simann" (unconstrained optimization using Simulated Annealing)
  110. - "subplex"(unconstrained optimization, general multivariate functions)
  111. - "donlp" (differentiable nonlinear optimization, dense linear algebra)
  112. - "hooke" (Hooke and Jeeves method)
  113.  
  114. For nonlinear optimization problems with both continuous and binary
  115. variables (MINLP), there is a code called DICOPT++, available
  116. commercially from GAMS Development Corp.  Contact gams@gams.com for
  117. more information.
  118.  
  119. For difficult problems like Global Optimization, methods like Genetic
  120. Algorithms and Simulated Annealing have been studied heavily.  I'm not
  121. well-versed in any of these topics, and I have been assured of
  122. contradictory things by different experts.  A particular point of
  123. controversy is whether there is a proof of optimality for practical
  124. variants of such algorithms for Global Optimization problems, and I
  125. take no particular stand on the issue (since for difficult problems
  126. such a proof may be of academic interest only).  Even moreso than
  127. usual, I say "let the user beware" when it comes to code.  There's a
  128. (compressed) Postscript file available by anonymous FTP, containing a
  129. forty-page introduction to the topic of GA, that one can obtain from
  130. beethoven.cs.colostate.edu in file pub/TechReports/1993/tr-103.ps.Z.
  131. The Usenet newsgroup on GA, comp.ai.genetic, has a FAQ on the topic,
  132. otherwise known as "The Hitch-Hiker's Guide to Evolutionary
  133. Computation".  That FAQ can be obtained by anonymous FTP at
  134. rtfm.mit.edu, in directory /pub/usenet/news.answers/ai-faq/genetic,
  135. in files named part* .  Genetic Algorithm code can be obtained from
  136. cs.ucsd.edu in /pub/GAucsd.  Simulated Annealing code for NLP and other
  137. problems is available at ftp.alumni.caltech.edu, /pub/ingber - contact
  138. Lester Ingber (ingber@alumni.caltech.edu) for more info.  I am unaware
  139. of the existence of any other widely available and "ready-to-use"
  140. software for finding answers to Global Optimization problems.  For
  141. other ideas on Global Optimization, you may want to consult one of the
  142. books given in the section on references, such as [Nemhauser] or one of
  143. the ones with "Global" in its title.  There is also a Journal of Global
  144. Optimization, published by Kluwer.
  145.  
  146. Here is a summary of other NLP codes mentioned in newsgroups in the
  147. past few years, sorted alphabetically.  Perhaps someone will volunteer
  148. to organize these references more usefully.
  149.  
  150. - Amoeba - Numerical Recipes
  151. - Brent's Method - Numerical Recipes
  152. - CONMIN - Vanderplaats and Associates, Goleta CA
  153. - CONOPT - large-scale GRG code, by Arne Drud.  Available with GAMS
  154.   or AMPL (modeling languages) or standalone.
  155. - DFPMIN - Numerical Recipes  (Davidon-Fletcher-Powell)
  156. - Eureka - Borland Software (for IBM PC class of machines)
  157. - FSQP/CFSQP (Fortran/C) -  Contact Andre Tits, andre@eng.umd.edu.  
  158.   Free of charge to academic users.  Solves general nonlinear 
  159.   constrained problems, including constrained minimax problems.  CFSQP 
  160.   (C code) includes a scheme to efficently handle problems with many 
  161.   constraints (e.g., discretized semi-infinite problems).
  162. - GENOCOP - Solves linearly constrained problems via a Genetic
  163.   algorithm, available by FTP at unccsun.uncc.edu (152.15.10.88).
  164.   Author: Zbigniew Michalewicz, zbyszek@mosaic.uncc.edu.
  165. - GINO - LINDO Systems, Chicago, IL
  166. - GRG2 - Leon Lasdon, University of Texas, Austin TX
  167. - Harwell Library routine VF04.
  168. - Hooke and Jeeves algorithm - see reference below.  A version is
  169.   available from netlib, in /netlib/opt/hooke.c, and may be useful
  170.   because it handles nondifferentiable and/or discontinuous functions.
  171. - IMSL routine UMINF and UMIDH.
  172. - LANCELOT - large scale NLP. See the book by Conn et al. in the
  173.   references section.  For peaceful purposes only.
  174. - LSSOL - Stanford Business Software Inc.  (See MINOS)
  175.   This code does convex (positive semi-definite) QP.  Is the QP solver
  176.   used in current versions of NPSOL.
  177. - MATLAB Optimization Toolbox - The Mathworks, Inc. 508-653-1415.
  178.   Handles various nonlinear optimization problems.
  179.   Data sheet available in postscript format via anonymous FTP:
  180.   ftp.mathworks.com in /pub/product-info/optimization.ps .
  181.   Email address: info@mathworks.com .
  182. - MINOS - Stanford Business Software Inc., 415-962-8719.  Mailing
  183.   address: 2672 Bayshore Parkway, Suite 304, Mountain View, CA 94043.
  184.   This code is often used by researchers as a "benchmark" for others
  185.   to compare with.
  186. - MINPACK I and II - Contact Steve Wright, wright@mcs.anl.gov, or
  187.   check the netlib server.
  188. - NAG Library routine E04UCF (essentially the same as NPSOL).
  189. - NOVA - DOT Products, Houston TX
  190. - NPSOL - Stanford Business Software Inc.  (See MINOS)
  191. - QLD - Contact: Klaus.Schittkowski@uni-bayreuth.de.  Solves Quadratic
  192.   Programming and other nonlinear problems.
  193. - QPSOL - see LSSOL.
  194.  
  195. A book that became available in November 1993 is the "Optimization
  196. Software Guide," by Jorge More and Stephen Wright, from SIAM Books.
  197. Call 1-800-447-7426 to order ($24.50, less ten percent if you are a
  198. SIAM member).  It contains references to 75 available software
  199. packages, and goes into more detail than is possible in this FAQ.
  200.  
  201. -----------------------------------------------------------------------
  202.  
  203. Q3.  "I wrote an optimization code.  Where are some test models?"
  204.  
  205. A: There are various test sets for NLP.  Among those I've seen
  206. mentioned are:
  207.   - A. Corana et al, "Minimizing Multimodal Functions of Continuous
  208.     Variables with the Simulated Annealing Algorithm," ACM Transactions
  209.     on Mathematical Software, Vol. 13, No. 3, Sept 1987, pp. 262-280.
  210.     (Difficult unconstrained nonlinear models)
  211.   - C.A. Floudas and P.M. Pardalos, A Collection of Test Problems for
  212.     Constrained Global Optimization Algorithms, Springer-Verlag,
  213.     Lecture Notes in Computer Science 455 (1990).
  214.   - W.W. Hager, P.M. Pardalos, I.M. Roussos, and H.D. Sahinoglou,
  215.     Active Constraints, Indefinite Quadratic Programming, and Test
  216.     Problems, Journal of Optimization Theory and Applications Vol. 68,
  217.     No. 3 (1991), pp. 499-511.
  218.   - J. Hasselberg, P.M. Pardalos and G. Vairaktarakis, Test case
  219.     generators and computational results for the maximum clique
  220.     problem, Journal of Global Optimization 3 (1993), pp. 463-482.
  221.   - B. Khoury, P.M. Pardalos and D.-Z. Du, A test problem generator for
  222.     the steiner problem in graphs, ACM Transactions on Mathematical
  223.     Software, Vol. 19, No. 4 (1993), pp. 509-522.
  224.   - Y. Li and P.M. Pardalos, Generating quadratic assignment test
  225.     problems with known optimal permutations, Computational
  226.     Optimization and Applications Vol. 1, No. 2 (1992), pp.  163-184.
  227.   - P. Pardalos, "Generation of Large-Scale Quadratic Programs", ACM
  228.     Transactions on Mathematical Software, Vol. 13, No. 2, p. 133.
  229.   - P.M. Pardalos, Construction of test problems in quadratic bivalent
  230.     programming, ACM Transactions on Mathematical Software, Vol. 17,
  231.     No. 1 (1991), pp. 74-87.
  232.   - P.M. Pardalos, Generation of large-scale quadratic programs for use
  233.     as global optimization test problems,  ACM Transactions on
  234.     Mathematical Software, Vol. 13, No. 2 (1987), pp. 133-137.
  235.   - F. Schoen, "A Wide Class of Test Functions for Global
  236.     Optimization", J. of Global Optimization, 3, 133-137, 1993, with
  237.     C source code available for anonymous FTP at ghost.dsi.unimi.it,
  238.     directory ftp/pub/schoen.
  239.   - publications (referenced in another section of this list) by
  240.     Schittkowski; Hock & Schittkowski; Torn & Zilinskas.
  241. Some of the other publications listed in the references section also
  242. may contain problems that you could use to test a code.
  243.  
  244. A package called CUTE (Constrained and Unconstrained Testing
  245. Environment) is a set of Fortran subroutines, system tools and test
  246. problems in the area of nonlinear optimization and nonlinear equations.
  247. The package may be obtained via anonymous FTP at camelot.cc.rl.ac.uk
  248. (Internet 130.246.8.61), in the directory pub/cute, or at
  249. thales.math.fundp.ac.be (Internet 138.48.4.14) in directory cute.  A
  250. LaTex formatted manuscript is included in the distribution file.
  251. Download the README file first and follow the directions contained
  252. therein.  Questions should be directed toward any of the package's
  253. authors:
  254.   Ingrid Bongartz     bongart@watson.ibm.com
  255.   Andy Conn           arconn@watson.ibm.com
  256.   Nick Gould          gould@cerfacs.fr
  257.   Philippe Toint      pht@math.fundp.ac.be
  258.  
  259. John Beasley has posted information on his OR-Lib, which contains
  260. various optimization test problems.  Send e-mail to
  261. umtsk99@vaxa.cc.imperial.ac.uk to get started.  Or have a look in the
  262. Journal of the Operational Research Society, Volume 41, Number 11,
  263. Pages 1069-72.  The only nonlinear models in this collection at this
  264. writing are Quadratic Assignment problems.
  265.  
  266. The modeling language GAMS comes with about 150 test models, which you
  267. might be able to test your code with.  The models are in the public
  268. domain according to the vendor, although you need access to a GAMS
  269. system if you want to run them without modifying the files.
  270.  
  271. In the journal Mathematical Programming, Volume 61 (1993) Number 2,
  272. there is an article by Calamai et al. that discusses how to generate QP
  273. test models.  It gives what seems a very full bibliography of earlier
  274. articles on this topic.  The author offers at the end of the article to
  275. send a Fortran code that generates QP models, if you send email to
  276. phcalamai@dial.waterloo.edu.
  277.  
  278. The paper "An evaluation of the Sniffer Global Optimization Algorithm
  279. Using Standard Test Functions", Roger A.R. Butler and Edward E.
  280. Slaminka, J. Comp. Physics, 99, 28-32, (1992) mentions  the following
  281. reference containing 7 functions that were intended to thwart global
  282. minimization algorithms: "Towards Global Optimization 2", L.C.W. Dixon
  283. and G.P. Szego, North-Holland, 1978.
  284. [from Dean Schulze - schulze@asgard.lpl.arizona.edu]
  285.  
  286. -----------------------------------------------------------------------
  287.  
  288. Q4.  "What references are there in this field?"
  289.  
  290. A:  What follows here is an idiosyncratic list, a few books that I like
  291. or have been recommended on the net.  I have *not* reviewed them all.
  292.  
  293. General reference
  294. -  Nemhauser, Rinnooy Kan, & Todd, eds, Optimization, North-Holland,
  295.    1989.  (Very broad-reaching, with large bibliography.  Good
  296.    reference; it's the place I tend to look first.  Expensive, and
  297.    tough reading for beginners.)
  298.  
  299. Other publications (can someone help classify these more usefully?)
  300. -  Bazaraa & Shetty, Nonlinear Programming, Theory & Applications.
  301. -  Coleman & Li, Large Scale Numerical Optimization, SIAM Books.
  302. -  Conn, A.R., et al., "LANCELOT: A code for large-scale, constrained,
  303.    NLP", Springer series in computational mathematics, 1992.
  304. -  Dennis & Schnabel, Numerical Methods for Unconstrained Optimization
  305.    and Nonlinear Equations, Prentice Hall, 1983.
  306. -  Fiacco & McCormick, Sequential Unconstrained Minimization
  307.    Techniques, SIAM Books.  (An old standby, given new life by the
  308.    interior point LP methods.)
  309. -  Fletcher, R., Practical Methods of Optimization, Wiley, 1987.  (Good
  310.    reference for Quadratic Programming, among other things.)
  311. -  Floudas & Pardalos, Recent Advances in Global Optimization,
  312.    Princeton University Press, 1992.
  313. -  Gill, Murray & Wright, Practical Optimization, Academic Press, 1981.
  314.    (An instant NLP classic when it was published.)
  315. -  Himmelblau, Applied Nonlinear Programming, McGraw-Hill, 1972.
  316.    (Contains some famous test problems.)
  317. -  Hock & Schittkowski, Test Examples for Nonlinear Programming Codes,
  318.    Springer-Verlag, 1981.
  319. -  Hooke & Jeeves, "Direct Search Solution of Numerical and Statistical
  320.    Problems", Journal of the ACM, Vol.8 pp. 212-229, April 1961.
  321. -  Horst and Tuy, Global Optimization, Springer-Verlag, 1993.
  322. -  Kahaner, Moler & Nash, Numerical Methods and Software, Prentice-
  323.    Hall.
  324. -  Luenberger, Introduction to Linear and Nonlinear Programming,
  325.    Addison Wesley, 1984.  (Updated version of an old standby.)
  326. -  More, "Numerical Solution of Bound Constrained Problems", in
  327.    Computational Techniques & Applications, CTAC-87, Noye & Fletcher,
  328.    eds, North-Holland, 29-37,  1988.
  329. -  More & Toraldo, Algorithms for Bound Constrained Quadratic
  330.    Programming Problems, Numerische Mathematik 55, 377-400, 1989.
  331. -  More & Wright, "Optimization Software Guide", SIAM, 1993.
  332. -  Nocedal, J., summary of algorithms for unconstrained optimization
  333.    in "Acta Numerica 1992".
  334. -  Schittkowski, Nonlinear Programming Codes, Springer-Verlag, 1980.
  335. -  Schittkowski, More Test Examples for Nonlinear Programming Codes,
  336.    Lecture Notes in Economics and Math. Systems 282, Springer 1987.
  337. -  Torn & Zilinskas, Global Optimization, Springer-Verlag, 1989.
  338. -  Wright, M., "Interior methods for constrained optimization", Acta
  339.    Mathematica, Cambridge University Press, 1992.  (Survey article.)
  340.  
  341. Simulated Annealing & Genetic Algorithms
  342. -  Davis, L. (ed.), Genetic Algorithms and Simulated Annealing, Morgan
  343.    Kaufmann, 1989.
  344. -  De Jong, "Genetic algorithms are NOT function optimizers" in
  345.    Foundations of Genetic Algorithms: Proceedings 24-29 July 1992, D.
  346.    Whitley (ed.) Morgan Kaufman
  347. -  Goldberg, D., "Genetic Algorithms in Search, Optimization, and
  348.    Machine Learning", Addison-Wesley, 1989.
  349. -  Ingber "Very fast simulated re-annealing" Mathematical and Computer
  350.    Modeling, 12(8) 1989, 967-973
  351. -  Kirkpatrick, Gelatt & Vecchi, Optimization by Simulated Annealing,
  352.    Science, 220 (4598) 671-680, 1983.
  353. -  Michalewicz et al., article in volume 3(4) 1991 of the ORSA Journal
  354.    on Computing.
  355. -  Michalewicz, Z., "Genetic Algorithms + Data Structures = Evolution
  356.    Programs", Springer Verlag, 1992.
  357. -  Reeves, C.R., ed., Modern Heuristic Techniques for Combinatorial
  358.    Problems, Halsted Press (Wiley).  (Contains chapters on tabu search,
  359.    simulated annealing, genetic algorithms, neural nets, and Lagrangean
  360.    relaxation.)
  361.  
  362. -----------------------------------------------------------------------
  363.  
  364. Q5.  "How do I access the Netlib server?
  365.  
  366. A:  If you have FTP access, you can try "ftp netlib2.cs.utk.edu", using
  367. "anonymous" as the Name, and your email address as the Password.  Do a
  368. "cd <dir>" where <dir> is whatever directory was mentioned, and look
  369. around, then do a "get <filename>" on anything that seems interesting.
  370. There often will be a "README" file, which you would want to look at
  371. first.  Another FTP site is "netlib.att.com", although you will first
  372. need to do "cd netlib" before you can cd to the <dir> you are
  373. interested in.  Alternatively, you can reach an e-mail server via
  374. "netlib@ornl.gov", to which you can send a message saying "send index
  375. from <dir>"; follow the instructions you receive.
  376.  
  377. -----------------------------------------------------------------------
  378.  
  379. Q6.  "Who maintains this FAQ list?"
  380.  
  381. A:  John W. Gregory
  382.     Applications Department
  383.     Cray Research, Inc.
  384.     Eagan, MN 55121   USA
  385.     jwg@cray.com
  386.     612-683-3673
  387.  
  388. This article is Copyright 1994 by John W. Gregory.  It may be freely
  389. redistributed in its entirety provided that this copyright notice is
  390. not removed.  It may not be sold for profit or incorporated in
  391. commercial documents without the written permission of the copyright
  392. holder.  Permission is expressly granted for this document to be made
  393. available for file transfer from installations offering unrestricted
  394. anonymous file transfer on the Internet.
  395.  
  396. The material in this document does not reflect any official position
  397. taken by Cray Research, Inc.  While all information in this article is
  398. believed to be correct at the time of writing, is it provided "as is"
  399. with no warranty implied.
  400.  
  401. I've tried to keep my own biases (primarily, toward the high end of
  402. computing) from dominating what I write here, and other viewpoints that
  403. I've missed are welcome.  Suggestions, corrections, topics you'd like
  404. to see covered, and additional material are solicited.
  405.  
  406. One disclaimer, which I alternately decide I should or shouldn't bother
  407. to state here, is that my wife works for one of the commercial LP firms
  408. mentioned in the LP FAQ.  I don't think you could guess which one,
  409. based on any of my comments in these two FAQs; besides, in my jobs at
  410. Cray and CDC I have had occasion to work with developers of many codes
  411. (and I worked on a few LP codes myself).  At any rate, my wife didn't
  412. write this FAQ, I did.  8v)
  413.  
  414. This FAQ list is also being posted to news.answers and sci.answers, and
  415. is archived in the periodic posting archive on rtfm.mit.edu
  416. [18.70.0.209], in the anonymous FTP directory /pub/usenet/sci.answers.
  417. The name under which FAQs are archived appears in the Archive-name
  418. line at the top of the article.  This particular FAQ is archived as
  419. "nonlinear-programming-faq".  You will find many other FAQs, covering a
  420. staggering variety of topics, in this hierarchy.  There's a mail
  421. server on that machine, so if you don't have FTP privileges, you can
  422. send an e-mail message to  mail-server@rtfm.mit.edu containing:
  423.     send usenet/sci.answers/nonlinear-programming-faq
  424. as the body of the message.  This FAQ is also cross-posted to
  425. news.answers.
  426.  
  427. If you wish to cite this FAQ formally (hey, someone actually asked),
  428. you may use:
  429.   Gregory, John W. <jwg@cray.com> (1994) "Nonlinear Programming FAQ",
  430.   Usenet sci.answers.  Available via anonymous FTP from rtfm.mit.edu
  431.   in /pub/usenet/sci.answers/nonlinear-programming-faq
  432.  
  433. -----------------------------------------------------------------------
  434. END nonlinear-programming-faq
  435.  
  436.